home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / lamstex / index / Makefile < prev   
Makefile  |  1991-09-06  |  481b  |  27 lines

  1. # Makefile for TeXplorators index
  2. #
  3. # config.sun-gcc.h is supplied as a model.
  4. # UnixTeX would like to hear of any interesting
  5. # configuration files for other systems.
  6. # Copy the appropriate config.*.h to config.h
  7. # then make
  8. #
  9. # This Makefile may not work for MSDOS. Make your 
  10. # own one, or compile by hand.
  11. #
  12. CFLAGS = -g
  13. CC = gcc
  14.  
  15. all:    index 
  16.  
  17. index:    index.o
  18.     cc -o index index.o
  19.  
  20. index.o:    index.c config.h
  21.  
  22. clean:
  23.     rm -f *.o *~ \#* core
  24.  
  25. veryclean:    clean
  26.     rm -f config.h index
  27.